home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Library / +ORC / Orc pac 3 / FILEZ.ZIP / LTSPEED.ZIP / LIGHTSPD.BAT < prev    next >
Encoding:
DOS Batch File  |  1990-11-05  |  862 b   |  62 lines

  1. ECHO OFF
  2.  
  3. MPS_DISK
  4. if errorlevel 4 goto File
  5. if errorlevel 3 goto File
  6. if errorlevel 2 goto HD1
  7.  
  8. :Error
  9. rem    no disks or single DD
  10. echo ⌠
  11. echo │   LightSpeed requires two diskette drives to run.
  12. echo ⌡
  13. goto Exit
  14.  
  15. :HD1
  16. rem    single HD drive
  17. echo ⌠
  18. echo │   Replace DISK_A with DISK_E.
  19. echo ⌡
  20. pause
  21. LightSpd
  22. goto Exit
  23.  
  24. :File
  25. MPS_FILE
  26. if errorlevel 2 goto DiskB
  27. if errorlevel 1 goto DiskA
  28.  
  29. MPS_DISK
  30. if errorlevel 4 goto HD_DD
  31.  
  32. rem    dual DD drives
  33. echo ⌠
  34. echo │   Insert DISK_E in second drive.
  35. echo ⌡
  36. pause
  37. LightSpd
  38. goto Exit
  39.  
  40. :HD_DD
  41. rem    HD & DD drives
  42. echo ⌠
  43. echo │   If playing off single drive, replace DISK_A with DISK_E.
  44. echo │
  45. echo │   If playing off dual  drives, insert DISK_E in second drive.
  46. echo ⌡
  47. pause
  48. LightSpd
  49. goto Exit
  50.  
  51. :DiskA
  52. A:LightSpd
  53. goto Exit
  54.  
  55. :DiskB
  56. B:LightSpd
  57. goto Exit
  58.  
  59. :Exit
  60. ECHO ON
  61.  
  62.